home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_1 / fornext.asp < prev    next >
Encoding:
Text File  |  2003-08-25  |  299 b   |  19 lines

  1. <%@ language="vbscript" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head><title>For...Next</title></head>
  5. <body>
  6.  
  7. <%
  8. Dim y,x
  9.  
  10. y = 0
  11. For i = 1 to 10
  12.     y = y + i
  13.     response.write y & "<br>"
  14. Next
  15. %>
  16.  
  17. </body>
  18. </html>
  19.